home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
4_0
/
L_CHSRC_
/
ASCII.H
< prev
next >
Wrap
Text File
|
1989-08-26
|
534b
|
22 lines
/********************************************************************************
* ascii.c
*
* ASCII Character Codes
*
* ⌐1989, Motorola Inc. All Rights Reserved
********************************************************************************/
#define _H_ascii
typedef enum {
asciiNoMark = 0x00,
asciiEnter = 0x03,
asciiHelp = 0x05,
asciiDelete = 0x08, asciiTab, asciiLineFeed,
asciiReturn = 0x0D,
asciiCmdMark = 0x11, asciiCheckMark, asciiDiamond, asciiApple,
asciiEscape = 0x1B,
asciiSpace = 0x20
} AsciiCodes;